home *** CD-ROM | disk | FTP | other *** search
- ;-------------------------------------------------------------------------
- ; netvmnet.inf -- VMnet Bridge Protocol Driver
- ;
- ; Copyright (c) 1993-1999, Microsoft Corporation
- ; Copyright (c) 2000-2001, VMware, Inc.
- ;-------------------------------------------------------------------------
- [version]
- Signature = "$Windows NT$"
- Class = NetService
- ClassGUID = {4D36E974-E325-11CE-BFC1-08002BE10318}
- Provider = %VMware%
-
- [Manufacturer]
- %VMware%=BRIDGE
-
- [BRIDGE]
- %VMware_Desc%=Install, vm_bridge
-
- ;-------------------------------------------------------------------------
- ; Installation Section
- ;-------------------------------------------------------------------------
- [Install]
- AddReg=Inst_Ndi
- Characteristics = 0x80 ; NCF_HAS_UI !!--Filter Specific--!!
- CopyFiles = VMnet.CopyFiles.Init, VMnet.CopyFiles.Sys
-
- ; ------------------------------------------------------------------------
- ; File copy
- ; ------------------------------------------------------------------------
- [SourceDisksNames]
- 1=%DiskDescription%,"",,
-
- [SourceDisksFiles]
- wmbridge.dll=1
- vmnet.sys=1
-
- [DestinationDirs]
- DefaultDestDir = 12
- VMnet.CopyFiles.Init = 11 ; %windir%\System32
- VMnet.CopyFiles.Sys = 12 ; %windir%\System32\drivers
-
- ; Copying of wmbridge.dll
- [VMnet.CopyFiles.Init]
- wmbridge.dll,,,2
-
- [VMnet.CopyFiles.Sys]
- vmnet.sys,,,2
-
- ;-------------------------------------------------------------------------
- ; Ndi installation support
- ;-------------------------------------------------------------------------
- [Inst_Ndi]
- HKR,Ndi,Service,,VMnet
- HKR,Ndi,HelpText,,%VMware_HelpText%
- HKR, Ndi\Interfaces, UpperRange,, noupper
- HKR,"Ndi\Interfaces","LowerRange",,"ndis5,ndis4"
-
- ; ----------------------------------------------------------------------
- ; Keys required if a Notify object is present
- ;
- HKR, Ndi, ClsID, , {3d09c1ca-2bcc-40b7-b9bb-3f3ec143a87b}
- HKR, Ndi, ComponentDll, , wmbridge.dll
-
-
- ;-------------------------------------------------------------------------
- ; Service installation support
- ;-------------------------------------------------------------------------
- [Install.Services]
- AddService=VMnet,2,VMnet_Service_Inst, VMnet_EventLog_Inst
-
- [VMnet_Service_Inst]
- DisplayName = %VMware_Desc%
- ServiceType = 1 ;SERVICE_KERNEL_DRIVER
- StartType = 1 ;SERVICE_AUTO_START
- ErrorControl = 1 ;SERVICE_ERROR_NORMAL
- ServiceBinary = %12%\vmnet.sys
- LoadOrderGroup = "PNP_TDI"
- AddReg = AddReg_VMnet_Service_Inst
- Description = %VMware_Desc%
-
- [AddReg_VMnet_Service_Inst]
- HKLM,"System\CurrentControlSet\Services\VMnet","TextModeFlags",%REG_DWORD%,0x0001
- ; Don't delete -- edward
- HKR,"Parameters\Adapters","Test",%REG_DWORD%,0
-
- [VMnet_EventLog_Inst]
- AddReg = VMnet_EventLog_AddReg
-
- [VMnet_EventLog_AddReg]
- HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\IoLogMsg.dll;%%SystemRoot%%\System32\drivers\vmnet.sys"
- HKR,,TypesSupported,0x00010001,7
-
-
- ;-------------------------------------------------------------------------
- ; Support for removal of static registry settings
- ;-------------------------------------------------------------------------
- [Install.Remove]
- DelReg=Del_Static_Reg
-
- [Install.Remove.Services]
- DelService=VMnet
-
- [Del_Static_Reg]
- HKLM,"System\CurrentControlSet\Services\VMnet","TextModeFlags"
-
-
- [Strings]
- VMware = "VMware, Inc."
- VMware_Desc = "VMware Bridge Protocol"
- VMware_HelpText = "Gives virtual machines access to physical networks."
- DiskDescription = "VMware install disk"
- REG_DWORD = 0x10001
-